Skip to main content
This forum is closed to new posts and responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:

HCL Software Customer Support Portal for U.S. Federal Government clients
HCL Software Customer Support Portal

HCL Notes/Domino 8.5 Forum (includes Notes Traveler)

HCL Notes/Domino 8.5 Forum (includes Notes Traveler)

Previous Next

407 proxy authentication error SOLVED

I finally found a way around the 407 proxy authentication error where Domino completely ignores the username and password set using this code?

You need to include this Authenticator code.

final String authUser = "userrname";
final String authPassword = "password";
Authenticator.setDefault(
new Authenticator() {
public PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(
authUser, authPassword.toCharArray());
}
}
);

System.getProperties().put( "proxySet", "true" );
System.getProperties().put("http.proxyHost", "proxy.my.domain.com");
System.getProperties().put( "http.proxyPort", "8080");
System.getProperties().put("http.proxyUser", authUser);
System.getProperties().put("http.proxyPassword", authPassword);


Feedback response number WEBB9NV7B2 created by ~Tony Minvelutexoni on 09/12/2014

How to open connection through prox... (~Vijay Zenfoobe... 19.Oct.10)
. . permissions (~Pippy Quetjumi... 19.Oct.10)
. . Any solution??? (~Bill Mingerote... 26.May.11)
. . Server Document settings (~Judy Fezweberg... 22.Feb.11)
. . . . 407 proxy authentication error SOLV... (~Tony Minvelute... 12.Sep.14)




Printer-friendly

Search this forum

Member Tools


RSS Feeds

 RSS feedsRSS
All forum posts RSS
All main topics RSS